Welcome![Sign In][Sign Up]
Location:
Search - quick sort

Search list

[Mathimatics-Numerical algorithmssort

Description: 各种排序算法 Title: Eight Sorting Algorithms Description: Bubble sort, selection sort, insertion sort, radix exchange sort, quick sort, shell sort, shaker sort. shows number of comparisons, time taken This file came from Planet-Source-Code.com...the home millions of lines of source code You can view comments on this code/and or vote on it at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=5570&lngWId=3 The author may have retained certain copyrights to this code...please observe their request and the law by reviewing all copyright conditions at the above URL. -Title: Eight Sorting Algorithms Description: Bubble sort, selection sort, insertion sort, radix exchange sort, quick sort, shell sort, shaker sort. shows number of comparisons, time taken This file came from Planet-Source-Code.com...the home millions of lines of source code You can view comments on this code/and or vote on it at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=5570&lngWId=3 The author may have retained certain copyrights to this code...please observe their request and the law by reviewing all copyright conditions at the above URL.
Platform: | Size: 150528 | Author: ggg | Hits:

[ELanguagequick

Description: It is a simple program which illustrates Quick Sort in C laguage.
Platform: | Size: 1024 | Author: Arjun S Bharadwaj | Hits:

[Data structssort-work

Description: alot of sorts codes : bubble sort binary sort merge sort quick sort etc.
Platform: | Size: 2048 | Author: Davy | Hits:

[Data structsSort

Description: 用C++写出直接插入排序, Shell排序,直接选择排序,冒泡排序,快速排序,堆排序,二路归并排序。-Using C++ to write directly into the sort, Shell sort, direct selection sort, bubble sort, quick sort, heap sort, merge sort.
Platform: | Size: 3072 | Author: luo | Hits:

[Data structsSort

Description: 这个是排序算法大全,包括插入排序,希尔排序,选择排序,冒泡排序,快速排序,归并排序-This is a sorting algorithm Daquan, including insertion sort, Hill sort, selection sort, bubble sort, quick sort, merge sort etc.
Platform: | Size: 3072 | Author: dengxianzhi | Hits:

[Windows DevelopQuick-sort

Description: Quicksort sorts by employing a divide and conquer strategy to divide a list into two sub-lists. The steps are: Pick an element, called a pivot, from the list. Reorder the list so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot come after it (equal values can go either way). After this partitioning, the pivot is in its final position. This is called the partition operation. Recursively sort the sub-list of lesser elements and the sub-list of greater elements. The base case of the recursion are lists of size zero or one, which never need to be sorted.
Platform: | Size: 1024 | Author: irisrd | Hits:

[Data structsSort

Description: 主要完成了数据结构中一些经典的排序算法像直接插入排序、直接选择哦排序、冒泡排序、快速排序、堆排序、归并排序-Mainly done some classical data structures such as direct insertion sort sorting algorithm, direct choice Oh sort, bubble sort, quick sort, heap sort, merge sort
Platform: | Size: 1596416 | Author: liqiang | Hits:

[VC/MFCsort

Description: 解决冒泡排序,快速排序,希尔排序等一些排序问题-Solve the bubble sort, quick sort, sort and some scheduling problems Hill
Platform: | Size: 20480 | Author: mzcc | Hits:

[Data structsquick

Description: 使用快速排序法,将无序的序列排成有序的序列-Use Quick Sort, the disorderly arranged in orderly sequence sequence
Platform: | Size: 1024 | Author: 姚建伟 | Hits:

[Mathimatics-Numerical algorithmssort

Description: 用C语言写的常见排序算法,包括直接选择排序、折半插入排序、起泡排序、快速排序、简单选择排序、归并排序等,已通过VC 6.0 测试。绝对实用。-Written in C language with common sorting algorithms, including direct selection sort, binary insertion sort, bubble sort, quick sort, simple selection sort, merge sort, etc., have been tested by VC 6.0. Absolutely practical.
Platform: | Size: 192512 | Author: lzj | Hits:

[VC/MFCsort

Description: 五种经典的排序法,经典冒泡排序法,直接插入排序,冒泡排序,选择排序,快速排序,堆排序五种排序算法的C语言描述 -Ranking the five classic, classic bubble sort method, the direct insertion sort, bubble sort, selection sort, quick sort, heap sort five sorting algorithms described in C language
Platform: | Size: 1024 | Author: 张玚 | Hits:

[Data structssort

Description: 随机产生一组数,实现下面6种排序算法:插入排序、起泡排序、选择排序、Shell排序、快速排序根据键盘输入选择“从大到小”还是“从小到大”两种方式; 4)根据键盘输入选择其中一种排序算法; -A set of randomly generated numbers, to achieve the following six kinds of sorting algorithms: insertion sort, bubble sort, selection sort, Shell sort, quick sort based on keyboard input select " descending" or " small to large" in two ways 4) choose one according to keyboard input sorting algorithm
Platform: | Size: 11264 | Author: | Hits:

[JSP/Javasort

Description: 从大到小的各种排序 包括快速排序 冒泡排序 选择排序-Descending order, including all Quick Sort Bubble Sort Selection Sort, etc.
Platform: | Size: 7168 | Author: sun | Hits:

[Data structssort

Description: Buble sort, Quick sort, Select sort
Platform: | Size: 157696 | Author: lpluto | Hits:

[Data structsSort

Description: 排序,各种排序算法,插入排序,冒泡排序,快速排序,等等!-Sorting, various sorting algorithms, insertion sort, bubble sort, quick sort, and more!
Platform: | Size: 2048 | Author: 迷路的小孩 | Hits:

[Data structssort

Description: 各种排序算法,包括直接插入排序,希尔排序,冒泡排序,快速排序,简单选择排序-Various sorting algorithms, including direct insertion sort, Hill sort, bubble sort, quick sort, simple selection sort
Platform: | Size: 4343808 | Author: Wendy | Hits:

[Data structssort-compare

Description: 内部排序算法比较 问题描述:编制一个演示内部排序算法比较的程序。可对冒泡排序、直接插入排序、简单选择排序、快速排序、希尔排序和堆排序进行比较。 算法输入:排序方法选择,待排序的元素的关键字,关键字序列的给出方式(正序、逆序和乱序) 算法输出:不同情况下关键字参加的比较次数和关键字的移动次数。 算法要点:(1)由键盘输入待排序表的表长(50到100)和不同测试数据的组数。(2)利用不同排序方法排序并统计两类次数,列表显示(3)程序以对话方式执行。 -Comparison of the internal sorting algorithm Problem description: internal sorting algorithm demonstrates the preparation of a comparative process. Can bubble sort, direct insertion sort, simple selection sort, quick sort, sort and heap sort Hill comparison. Algorithm Input: sorting method selection, the elements to be sorted keywords, given the sequence mode (positive sequence, reverse and random order) Algorithm output: keywords under different circumstances the number of comparisons involving the mobile number and keyword. Algorithm points: (1) sort the table by the keyboard input table to be long (50 to 100) and different number of groups of test data. (2) methods using different sort order and the number of statistical categories, the list display (3) program implementation through dialogue.
Platform: | Size: 363520 | Author: Winky | Hits:

[Data structsSort

Description: 实用的冒泡排序及快速排序的C语言程序,程序思路清晰。-Practical bubble sort and quick sort of the C language program, the program clear thinking.
Platform: | Size: 1024 | Author: asc | Hits:

[Data structsSort

Description: 不同算法排序的C语言实现,包括直接选择排序,直接插入排序,快速排序,堆排序,-Different sorting algorithms written in C language , including direct selection sort, direct insertion sort, quick sort, heap sort, etc.
Platform: | Size: 5120 | Author: pdhy | Hits:

[Mathimatics-Numerical algorithmssort-methods

Description: 经典排序算法的C源码,其中包括: 简单插入排序(获得升序数组) 快速排序(最好的排序) 起泡法 选择法排序-Classical scheduling algorithm C source code, including: simple insertion sort (get ascending order array) quick sort (the best sort) sort foaming method to choose the method
Platform: | Size: 2048 | Author: jiangshifeng | Hits:
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 50 »

CodeBus www.codebus.net